home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / stringex / ex2.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  271 b   |  18 lines

  1. Program Example2;
  2.  
  3. Uses strings;
  4.  
  5. { Program to demonstrate the StrPCopy function. }
  6.  
  7. Const S = 'This is a normal string.';
  8.  
  9. Var P : Pchar;
  10.  
  11. begin
  12.   p:=StrAlloc (length(S)+1);
  13.   if StrPCopy (P,S)<>P then 
  14.     Writeln ('This is impossible !!')
  15.   else
  16.     writeln (P);
  17. end.
  18.